home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Text⁄Files / Voyeur 1.1.1 / Voyeur ƒ / MSG Shell ƒ / msg menus.h < prev    next >
Text File  |  1994-02-26  |  2KB  |  87 lines

  1. /**********************************************************************\
  2.  
  3. File:        msg menus.h
  4.  
  5. Purpose:    This is the header file for msg menus.c
  6.  
  7.  
  8. Voyeur -- a no-frills file viewer
  9. Copyright ©1993-4, Mark Pilgrim
  10.  
  11. This program is free software; you can redistribute it and/or modify
  12. it under the terms of the GNU General Public License as published by
  13. the Free Software Foundation; either version 2 of the License, or
  14. (at your option) any later version.
  15.  
  16. This program is distributed in the hope that it will be useful,
  17. but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. GNU General Public License for more details.
  20.  
  21. You should have received a copy of the GNU General Public License
  22. along with this program in a file named "GNU General Public License".
  23. If not, write to the Free Software Foundation, 675 Mass Ave,
  24. Cambridge, MA 02139, USA.
  25.  
  26. \**********************************************************************/
  27.  
  28. enum
  29. {
  30.     helpMenu = 200,
  31.     
  32.     appleMenu = 400,
  33.     fileMenu,
  34.     editMenu,
  35.     viewMenu,
  36.     optionsMenu,
  37.     windowMenu,
  38.     
  39.     aboutItem = 1,
  40.     aboutMSGItem,
  41.     helpItem,
  42.     
  43.     openItem = 1,
  44.     closeItem,
  45.     closeAllItem,
  46.     quitItem = 5,
  47.     
  48.     undoItem = 1,
  49.     cutItem = 3,
  50.     copyItem = 4,
  51.     pasteItem = 5,
  52.     clearItem = 6,
  53.     
  54.     dataForkItem = 1,
  55.     resourceForkItem,
  56.     forwardItem = 4,
  57.     backItem,
  58.     beginningItem,
  59.     endItem,
  60.     offsetItem,
  61.  
  62.     typeCreatorItem = 1,
  63.     eofItem,
  64.     findItem = 4,
  65.     findHexItem,
  66.     findAgainItem
  67. };
  68.  
  69. extern    MenuHandle        gAppleMenu;
  70. extern    MenuHandle        gFileMenu;
  71. extern    MenuHandle        gEditMenu;
  72. extern    MenuHandle        gViewMenu;
  73. extern    MenuHandle        gOptionsMenu;
  74. extern    MenuHandle        gHelpMenu;
  75. extern    MenuHandle        gWindowMenu;
  76.  
  77. void AdjustMenus(void);
  78. void HandleMenu(long mSelect);
  79. void HandleAppleMenu(int menuItem);
  80. void HandleFileMenu(int menuItem);
  81. void HandleEditMenu(int menuItem);
  82. void HandleViewMenu(int menuItem);
  83. void HandleOptionsMenu(int menuItem);
  84. void HandleHelpMenu(int menuItem);
  85. void HandleWindowMenu(int menuItem);
  86. void DoTheCloseThing(WindowPtr theWindow);
  87.